home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / idl / bonobo-2.0 / Bonobo_Sample_Echo.idl < prev    next >
Text File  |  2006-01-09  |  219b  |  17 lines

  1. /*
  2.  *  Sample file that demostrates how to create new
  3.  * Bonobo interfaces.
  4.  */
  5.  
  6. #include <Bonobo.idl>
  7.  
  8. module Bonobo {
  9. module Sample {
  10.   
  11.     interface Echo : Bonobo::Unknown {
  12.         void echo (in string message);
  13.     };
  14.  
  15. };
  16. };
  17.